home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: 500 MB Amiga Software
/
500 MB Amiga Software - Euber 130 - Amiga Games Disc & Mag.iso
/
arexx
/
dt_append.rexx
next >
Wrap
OS/2 REXX Batch file
|
1994-04-16
|
212b
|
19 lines
/* DeliTracker - toggles append */
address 'DELITRACKER'
options results
status G app
if result == "no" then do
Append yes
say "Append is now on..."
end
else do
Append no
say "Append is now off..."
end